@import url("reset.css");
/* @import url("fonts.css"); */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* VARIABLES */
:root {
  /* COLORS */
  --color-background: #fff;
  --color-bg-secondary: #f4f7f9;
  --color-white: #fff;
  --color-black: #1c1b1b;
  --color-dark-blue: #001a33;
  --text-color: #657078;
  --link-color: #52baf0;
  --light-blue: #f4f7f9;
  --light-gray-1: #f2f2f2;
  --light-gray-2: #e1e4e6;
  --primary-green: #42b883;

  /* BORDER RADIUS */
  --border-radius-8: 12px;
  --border-radius-12: 12px;
  --border-radius-24: 24px;
  --border-radius-32: 32px;
  --border-rounded: 100%;

  /* LINE HEIGHT */
  --line-height-115: 115%;
  --line-height-135: 135%;
  --line-height-150: 150%;
  --line-height-175: 175%;
  --line-height-200: 200%;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--color-background);
}

._lock {
  overflow: hidden;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.container-max {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.page-dark-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.page-dark-overlay._active {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}

.ds-none {
  display: none !important;
}

.ds-none-bl {
  display: none !important;
}

.border-red {
  border: 1px solid red !important;
}
/***** Header *****/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10000;
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(0, 0, 0, 0.04);
}

.pre-header {
  padding: 10px 35px;
  width: 100%;
  /* background-color: var(--primary-green); */
  border: 1px solid #f2f2f2;
}

.pre-header span {
  height: 100%;
  width: 1px;
  background-color: #e6e6e6;
  /* border: 1px solid red; */
}

.pre-header a {
  color: var(--text-color);
  font-weight: 300;
  font-size: 14px;
  /* color: var(--color-white);
  text-decoration: underline; */
}

.pre-header a.message {
  color: var(--primary-green);
  font-weight: 500;
  text-decoration: underline;
}

header._sticky {
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-row {
  gap: 110px;
  padding: 5px 35px;
  height: 80px;
}

.header-row .header-logo {
  max-width: 175px;
  width: 100%;
  height: auto;
}

.navigation-bar {
  width: 100%;
}

.menu-links {
  gap: 40px;
}
.menu-links li {
  position: relative;
}
/* .menu-links li .sub-menu {
  position: absolute;
  top: 250%;
  left: -50%;
  width: 250px;
  background-color: var(--color-white);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.menu-links li .sub-menu:after,
.menu-links li .sub-menu:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.menu-links li .sub-menu:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: var(--color-white);
  border-width: 10px;
  left: 50%;
  margin-left: -10px;
}

.menu-links li .sub-menu:before {
  border-width: 20px;
  left: 50%;
  margin-left: -20px;
}

.menu-links li .sub-menu li {
  transition: all 0.3s ease-in-out;
}

.menu-links li .sub-menu li a {
  display: flex;
  padding: 12.5px 15px;
  cursor: pointer;
}

.menu-links li .sub-menu li:hover {
  background-color: var(--primary-green);
}

.menu-links li .sub-menu._active {
  top: 205%;
  visibility: visible;
  opacity: 1;
} */

.hd-drop-link {
  position: relative;
}

/* submenu */
.hd-drop-link .sub-menu {
  position: absolute;
  top: 110%;
  left: -25%;
  min-width: 80px;

  background: #fff;
  border-radius: 8px;
  padding: 6px 0;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    0 6px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.hd-drop-link.shop .sub-menu {
  position: absolute;
  top: 110%;
  left: 0%;
  min-width: 200px;
}

/* show dropdown */
.hd-drop-link:hover .sub-menu,
.hd-drop-link:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* submenu links */
.sub-menu li a {
  padding: 6px 14px;
  display: block;
  color: var(--color-black);
  text-decoration: none;
  font-size: 16px;
}

.sub-menu li a:hover {
  background: var(--primary-green);
  color: white;
}

/* rotate arrow */
.hd-drop-link:hover .hd-drop-smb {
  transform: rotate(180deg);
}

.hd-drop-smb {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.menu-links a {
  gap: 10px;
  color: var(--color-black);
  font-weight: 500;
  font-size: 17px;
  line-height: var(--line-height-150);
  text-transform: capitalize;
  cursor: default;
  transition: all 0.3s ease-in-out;
}

.main-nv-ln:hover {
  color: var(--primary-green);
}

.hd-drop-smb {
  transition: all 0.2s ease-in-out;
}

.hd-drop-smb._active {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.header-contacts {
  gap: 40px;
  cursor: pointer;
}

.header-contacts .search-bar {
  width: 350px;
}

.search-wrapper {
  position: relative;
}

.search-wrapper i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #cccccc;
}

.header-contacts .search-bar input {
  width: 100%;
  padding: 10px;
  border-radius: var(--border-radius-12);
  outline: none;
  border: 1px solid #d9d9d9;
  font-size: 14px;
}

.header-contacts .live-search {
  position: relative;
  max-width: 400px;
}

.results {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 100;
}

.result-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}

.result-item:hover {
  background: #f5f7fa;
}

.result-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.result-item .title {
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.result-item .price {
  font-size: 13px;
  color: #777;
}

.no-result {
  padding: 12px;
  text-align: center;
  color: #999;
}

.contact-wrapper {
  gap: 0px;
}

.contact-wrapper span {
  font-size: 15px;
  line-height: var(--line-height-150);
  color: var(--color-black);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.contact-wrapper i {
  font-size: 18px;
  color: var(--primary-green);
  padding: 12px;
  /* border: 2px solid var(--color-black);
  border-radius: var(--border-rounded); */
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

/* .contact-wrapper:hover i {
  background-color: var(--primary-green);
} */

.contact-wrapper:hover span {
  color: var(--primary-green);
}

.header-shop-icon {
  position: relative;
}

.header-shop-icon i {
  font-size: 28px;
  color: #297050;
}

.header-shop-icon span {
  font-size: 16px;
  color: #297050;
  text-transform: capitalize;
}

.header-shop-icon span.counter {
  position: absolute;
  top: 0;
  padding: 3px;
  right: -15px;
  font-size: 11px;
  border-radius: var(--border-rounded);
  color: var(--color-white);
  background-color: var(--primary-green);
  width: 18px;
  height: 18px;
}

.get-quote {
  color: var(--color-white);
  background-color: var(--primary-green);
  padding: 16px 50px;
  font-size: 15px;
  border-radius: var(--border-radius-24);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.get-quote:hover {
  animation: pulse-animation 1.5s infinite;
}

.menu-icon {
  z-index: 5;
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-left: 5px;
  display: none;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  left: 0;
  position: absolute;
  height: 10%;
  width: 100%;
  transition: all 0.5s ease;
  background-color: var(--primary-green);
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  transform: perspective(1px) scale(1) translate3d(0, 0, 0);
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-icon span {
  top: 50%;
  transform: perspective(1px) scale(1) translate(0px, -50%)
    translate3d(0, 0, 0);
}

.menu-icon._active span {
  transform: scale(0) translate(0px, -50%);
}

.menu-icon._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}

.menu-icon._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
}

/***** End Header *****/

/***** CART *****/
/***** STEPS *****/
.checkout-steps.small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
}

/* BACK LINE */
.checkout-steps.small::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px; /* half circle width */
  right: 16px; /* half circle width */
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

/* PROGRESS LINE */
.checkout-steps.small::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px; /* half circle width */
  height: 2px;
  background: var(--primary-green);
  width: var(--progress, 0%);
  transition: width 0.4s ease;
  z-index: 0;
}

/* STEP */
.checkout-steps.small .step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 50px;
}

/* CIRCLE */
.checkout-steps.small .step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.3s ease;
}

/* LABEL */
.checkout-steps.small .step-label {
  font-size: 12px;
  color: #6b7280;
}

/* DONE */
.checkout-steps.small .step._done .step-index {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.checkout-steps.small .step._done .step-label {
  color: #198754;
}

/* ACTIVE */
.checkout-steps.small .step._active .step-index {
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.15);
}

.checkout-steps.small .step._active .step-label {
  color: var(--primary-green);
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .checkout-steps.small::before,
  .checkout-steps.small::after {
    left: 12px;
    right: 12px;
  }

  .checkout-steps.small .step-index {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .checkout-steps.small .step-label {
    font-size: 11px;
  }
}

/***** End STEPS *****/

/***** added cart modal *****/
/* ===== Overlay ===== */
.added-to-cart-overlay {
  position: fixed;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1055;
  backdrop-filter: blur(2px);
}

.added-to-cart-overlay._active {
  opacity: 1;
  visibility: visible;
}

/* ===== Popup box ===== */
.added-to-cart-box {
  width: 460px;
  max-width: calc(100% - 32px);
  border-radius: 16px;
  animation: cartPopupIn 0.25s ease;
}

.added-to-cart-box .added-header {
  margin-bottom: 18px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
}

.added-to-cart-box h6 {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
  line-height: var(--line-height-135);
  transition: all 0.2s ease-in-out;
}

.added-to-cart-box h6:hover {
  color: var(--primary-green);
}

/* ===== Animation ===== */
@keyframes cartPopupIn {
  from {
    transform: scale(0.92) translateY(10px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* ===== Product image ===== */
.added-to-cart-box img {
  width: 125px;
  height: 125px;
  object-fit: cover;
}

.added-to-cart-box .qty {
  font-size: 14px;
  font-weight: 500;
}

.modal-added-img-wr .badge-discount {
  position: absolute;
  top: -2px !important;
  left: 5px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ===== Close button hover ===== */
.added-to-cart-box .btn-close {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.added-to-cart-box .btn-close:hover {
  opacity: 1;
}

/* ===== Buttons spacing ===== */

.added-to-cart-box .added-actions button,
.added-to-cart-box .added-actions a {
  font-size: 16px;
  padding: 15px 10px;
  width: 50%;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  font-weight: 400;
}

.added-to-cart-box .added-actions button {
  border: none;
  background-color: #e6e6e6;
}

.added-to-cart-box .added-actions a {
  background-color: var(--primary-green);
  color: var(--color-white);
}

.added-to-cart-box .added-actions a:hover {
  background-color: #297050;
}

.added-to-cart-box .added-actions button:hover {
  background-color: #595959;
  color: var(--color-white);
}

/* ===== Mobile tweaks ===== */
@media (max-width: 480px) {
  .added-to-cart-box {
    width: 100%;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0;
    animation: cartPopupMobile 0.25s ease;
  }

  @keyframes cartPopupMobile {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}

/***** End added cart modal *****/

/***** CHECKOUT PAGE *****/

.checkout-form .row label.form-label {
  font-size: 14px;
}

/***** End CHECKOUT PAGE *****/

/***** CART TOTALS *****/
.totals-wrapper {
  max-width: 30%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: sticky !important;
  height: auto;
  top: 10px;
  left: 0;
  /* margin-top: 100px; */
}

.info-text {
  font-size: 16px;
  line-height: 165%;
  color: #181d25;
  font-weight: 400;
  background-color: #ebf7f0;
  padding: 10px;
  border-radius: 12px;
}

.info-text .item-succes {
  color: #297050;
  font-weight: 600;
}

.info-text i {
  font-size: 22px;
  color: #297050;
  margin-right: 4px;
}

.totals-header {
  margin-top: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid #f2f2f2;
}

.totals-header h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
  padding: 0px 0px 0px 0px;
  margin-bottom: 0;
}

.totals-header .edit-cart {
  color: var(--text-color);
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.totals-header .edit-cart:hover {
  color: var(--primary-green);
}

.totals-body .total-products img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
}

.totals-body .total-products .other-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  background-color: #f2f2f2;
}

.totals-body .total-products .other-img span {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.chk-view-all-btn {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 4px;
  background-color: var(--primary-green);
  color: var(--color-white);
  transition: all 0.2s ease-in-out;
}

.chk-view-all-btn:hover {
  background-color: #297050;
}

.totals-body .body-item {
  padding-bottom: 10px;
}
.totals-body .body-item.total {
  padding-top: 20px;
  border-bottom: none;
  border-top: 1px solid #f2f2f2;
}

.totals-body .body-item h3 {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}

.totals-body .body-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}

.totals-body .body-item .promo-label {
  font-size: 14px;
  color: var(--color-black);
}

.totals-body .body-item h3.total {
  font-size: 18px;
  color: var(--text-color);
}
.totals-body .body-item span.total {
  font-size: 18px;
  color: var(--color-black);
}

.totals-body .body-item.promo-code input {
  width: 65%;
}

.totals-body .body-item.promo-code button {
  width: 35%;
}

.totals-body .body-item.promo-code input,
.totals-body .body-item.promo-code button {
  padding: 7px;
  font-size: 16px;
  border-radius: 4px;
  outline: none;
}

.totals-body .body-item.promo-code input {
  border: 1px solid #bfbfbf;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.totals-body .body-item.promo-code button {
  border: none;
  background-color: var(--primary-green);
  color: var(--color-white);
  letter-spacing: 1.1px;
  transition: all 0.2s ease-in-out;
}

.totals-body .body-item.promo-code button:hover {
  background-color: #297050;
}

.totals-body .body-item.promo-code .promo-list .promo-success {
  font-size: 14px;
  color: #297050;
  font-weight: 600;
}

.totals-body .body-item.promo-code .promo-list i {
  font-size: 30px;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.totals-body .body-item.promo-code .promo-list i:hover {
  color: #e74c3c;
}

.totals-body .body-item.promo-code .promo-list .promo-success span {
  font-size: 14px;
  color: var(--primary-green);
}

.checkout-button {
  border: none;
  outline: none;
  font-size: 18px;
  padding: 13px 40px;
  border-radius: 8px;
  color: var(--color-white) !important;
  font-weight: 500;
  text-decoration: none;
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
  letter-spacing: 1.1px;
}

.continue-shoppoing {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
}

.points-info {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
}
.continue-shoppoing:hover {
  color: var(--color-black);
}

.checkout-button i {
  font-size: 18px;
  margin-right: 5px;
}

.checkout-button:hover {
  background-color: #297050;
}

/***** End CART TOTALS *****/

/***** CART-MODAL *****/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  inset: 0;
  transition: all 0.4s ease-in-out;
}

/* .modal-overlay .modal-backdrop {
  inset: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
} */
.modal-overlay._active {
  visibility: visible;
  opacity: 1;
}

.modal-body-class {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.2s;
  position: relative;
  bottom: -100%;
  opacity: 1;
  visibility: hidden;
}

.modal-overlay._active .modal-body-class {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.modal-body-right {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.2s;
  position: relative;
  opacity: 0;
  visibility: hidden;
  right: -100%;
  height: 100%;
}

.modal-overlay._active .modal-body-right {
  visibility: visible;
  opacity: 1;
  visibility: visible;
  right: 0;
}

.cart-shop-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 0px 10px 10px 10px;
  background-color: #fff;
  box-shadow: 0 -10px 10px -10px #d9d9d9;
  border: 1px;
  margin-top: auto;
}

.cart-scroll-body {
  max-height: 450px;
  min-height: 320px;
}

.add-cart-modal-body {
  max-width: 450px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  /* padding: 20px; */
  overflow-y: scroll;
}

/* width */
.add-cart-modal-body::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.add-cart-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  margin-top: 70px;
}

.add-cart-modal-body::-webkit-scrollbar-button {
  height: 12px;
}

/* Handle */
.add-cart-modal-body::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.add-cart-modal-body::-webkit-scrollbar-thumb:hover {
  background: #8c8c8c;
}

.add-cart-modal-body .cart-md-header {
  top: 0;
  left: 0;
  position: sticky;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  z-index: 100;
}

.additional-info-oreder span {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

.add-cart-modal-body .cart-md-header.checkout {
  top: 0;
  left: 0;
  position: sticky;
  width: 100%;
  background-color: #fff;
  padding: 20px;
}

.add-cart-modal-body .cart-md-header h3 {
  font-size: 22px;
}

.add-cart-modal-body .cart-md-header h3 i {
  color: var(--primary-green);
}

.detail-block {
  padding: 5px 15px;
}

.detail-block h3 {
  font-size: 16px;
  font-weight: 500;
}

.detail-item-row-md .prim,
.detail-item-row-md .second {
  font-size: 14px;
  font-weight: 500;
}
.cart-md-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 -10px 10px -10px #d9d9d9;
  border: 1px;
  margin-top: auto;
}

.cart-md-total h5 {
  font-size: 20px;
}

.cart-md-total p {
  font-size: 14px;
}

.cart-md-button {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.cart-md-button a {
  width: 50%;
  font-size: 16px;
  color: #ffffff;
  border-radius: var(--border-radius-8);
  line-height: 1;
  padding: 16px 26px;
  background-color: var(--primary-green);
  font-family: "Quicksand", sans-serif;
  outline: none;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
  font-weight: 600;
}

.cart-md-button a.outline {
  background-color: #cccccc;
  color: #595959;
}

.cart-md-button a:hover {
  opacity: 1;
}

/* .history-aside-overlay .cart-md-products-wrap {
  border-bottom: 2px solid #e6e6e6;
} */

.cart-md-products-wrap {
  padding: 20px;
  gap: 25px;
}

.cart-md-products-wrap .product {
  margin: 0;
  padding: 0;
}

/* Discount badge */
.product-img .badge-discount {
  position: absolute;
  top: -5px !important;
  left: 8px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.cart-md-products-wrap .product img {
  max-width: 125px;
  width: 100;
  height: 125px;
}

.cart-md-products-wrap .product .product-cart-title {
  margin-top: 7px;
}

.cart-md-products-wrap .product .product-cart-title h3 a {
  color: var(--color-black) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  transition: all 0.2s ease-in-out;
}

.cart-md-products-wrap .product .product-cart-title h3 a:hover {
  color: var(--primary-green) !important;
}

.cart-md-products-wrap .product .product-cart-title h4 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

.cart-md-products-wrap .product .product-cart-title h4.qty {
  font-size: 13px;
  color: var(--text-color);
  display: inline-flex; /* or inline-block */
  align-self: flex-start;
}

.cart-md-products-wrap
  .product
  .product-cart-title
  h4.qty
  .price-old {
  position: absolute;
  top: -8px;
  right: -30px;
  font-size: 11px;
  color: var(--text-color);
}

.cart-md-products-wrap
  .product
  .product-cart-title
  h4.qty
  .price-new {
  font-size: 14px;
  color: var(--text-color);
}

/***** End CART-MODAL *****/

/* ===== WRAPPER ===== */

.cart-parent {
  margin-top: 100px;
}

.cart-layer {
  max-width: 74%;
  width: 100%;
}

.cart-info a {
  font-size: 16px;
  color: var(--text-color);
  transition: 0.2s ease-in-out;
}

.cart-info a:hover {
  color: #c82333;
}

.cart-info a.view-cart-info {
  font-size: 14px;
}

.cart-info a.view-cart-info:hover {
  color: var(--primary-green);
}

.cart-info .hd-cart p {
  font-size: 14px;
  font-weight: 400;
}

.cart-info .hd-cart p span {
  font-weight: 600;
}

.cart-info h3 {
  font-size: 24px;
  font-weight: 500;
}

.cart-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
}

/* ===== TABLE ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.sortable {
  cursor: pointer;
  user-select: none;
}
.sortable::after {
  content: " ⇅";
  opacity: 0.4;
}

.cart-table._history th {
  text-transform: capitalize !important;
}

span.circle {
  width: 10px;
  height: 10px;
  border-radius: var(--border-rounded);
  background-color: var(--primary-green);
}

.text-item span {
  font-size: 14px;
}

.cart-table td {
  padding: 18px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}

td.details button {
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: var(--primary-green);
  color: var(--color-white);
  transition: all 0.2s ease-in-out;
}

td.details button:hover {
  background-color: #297050;
}
/* ===== PRODUCT ===== */
.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #eee;
}

.cart-product-info strong a {
  color: var(--color-dark-blue);
  display: block;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  max-width: 250px;
  line-height: var(--line-height-150);
}

.cart-product-info strong a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.cart-code {
  display: block;
  font-size: 14px;
  color: #888;
}

.stock {
  font-size: 14px;
}

.in-stock {
  color: #2ecc71;
}
.out-stock {
  color: #e74c3c;
}

/* ===== PRICE ===== */
.cart-price {
  white-space: nowrap;
}

.price-old {
  display: block;
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}

.price-new {
  font-size: 16px;
  font-weight: 600;
}

.cart-price .badge-discount {
  display: inline-flex; /* or inline-block */
  align-self: flex-start;
  margin: 0;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 6px;
  color: var(--color-white);
}

/* ===== QTY ===== */
.qty-control {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.qty-control.md-cart {
  display: inline-flex; /* or inline-block */
  align-self: flex-start;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 5px;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: none;
  background: #f7f7f7;
  cursor: pointer;
}

.qty-control input {
  width: 44px;
  border: none;
  text-align: center;
  outline: none;
}

/* ===== TOTAL ===== */
.cart-total {
  font-size: 16px;
  font-weight: 700;
}

/* ===== REMOVE ===== */
.cart-remove {
  background: none;
  border: none;
  font-size: 22px;
  color: #bbb;
  cursor: pointer;
}

.cart-remove:hover {
  color: #ff4d4f;
}

.payment-card {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e6e9ec;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.payment-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(66, 184, 131, 0.15);
}

.btn-check:checked + .payment-card {
  /* border-color: var(--primary-green); */
  background: var(--primary-green);
  box-shadow: none;
}

.btn-check:checked + .payment-card .payment-title,
.btn-check:checked + .payment-card .payment-subtitle,
.btn-check:checked + .payment-card .payment-icon {
  color: var(--color-white);
}

.payment-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
}

.payment-subtitle {
  font-size: 13px;
  color: #6c757d;
  margin-top: 10px;
}

.payment-icon {
  font-size: 26px;
  color: var(--primary-green);
}

.payment-img {
  width: 35px;
  height: auto;
}

.agreement-check {
  margin-top: 20px;
}

.agreement-check .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #42b883;
  cursor: pointer;
}

.agreement-check .form-check-input:checked {
  background-color: #42b883;
  border-color: #42b883;
}

.agreement-check .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(66, 184, 131, 0.25);
}

.agreement-check .form-check-label {
  margin-left: 8px;
  font-size: 16px;
  color: #495057;
  margin-top: 6px;
}

.agreement-check .form-check-label a {
  color: #42b883;
  text-decoration: none;
  font-weight: 500;
}

.agreement-check .form-check-label a:hover {
  text-decoration: underline;
}

/***** End CART *****/

/***** Main  *****/

main._homepage {
  flex: 1 1 auto;
}

main._page {
  margin-top: 75px;
  margin-bottom: 50px;
}

/***** Main Slider homepage (index) *****/

.main-slider__slide {
  position: relative;
}

.main-slider__slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 47% 0;
}

.main-slider__slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

.main-slider__slide .main-slider__text {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  gap: 10px;
  max-width: 600px;
  width: 100%;
}
/* 
.main-slider__slide.swiper-slide-active .main-slider__text {
  animation: leftright 2s;
} */

/* .main-slider__wrapper
  .main-slider__slide:nth-child(2n)
  .main-slider__text {
  left: unset;
  right: 0;
} */

.main-slider__slide .main-slider__text h2 {
  font-size: 70px;
  line-height: var(--line-height-150);
}

.main-slider__slide .main-slider__text p {
  font-size: 20px;
  line-height: var(--line-height-150);
  margin-bottom: 20px;
}

.main-slider__slide .main-slider__text .slider__link {
  margin-left: 20px;
}

.main-slider__slide .main-slider__text h2,
.main-slider__slide .main-slider__text p,
.main-slider__slide .main-slider__text .slider__link {
  position: relative;
  left: 0;
}

/* .main-slider__wrapper
  .main-slider__slide:nth-child(2n)
  .main-slider__text
  h2,
.main-slider__wrapper
  .main-slider__slide:nth-child(2n)
  .main-slider__text
  p,
.main-slider__wrapper
  .main-slider__slide:nth-child(2n)
  .main-slider__text
  .slider__link {
  left: unset;
  right: 0;
} */

.main-slider__wrapper
  .main-slider__slide.swiper-slide-active
  .main-slider__text
  h2 {
  animation: leftright 2s;
}
.main-slider__wrapper
  .main-slider__slide.swiper-slide-active
  .main-slider__text
  p {
  animation: leftright 2.5s;
}
.main-slider__wrapper
  .main-slider__slide.swiper-slide-active
  .main-slider__text
  .slider__link {
  animation: leftright 3s;
}

/* .main-slider__wrapper
  .main-slider__slide.swiper-slide-active:nth-child(2n)
  .main-slider__text
  h2 {
  animation: rightleft 2s;
}
.main-slider__wrapper
  .main-slider__slide.swiper-slide-active:nth-child(2n)
  .main-slider__text
  p {
  animation: rightleft 2.5s;
}
.main-slider__wrapper
  .main-slider__slide.swiper-slide-active:nth-child(2n)
  .main-slider__text
  .slider__link {
  animation: rightleft 3s;
} */

@keyframes leftright {
  0%,
  20% {
    opacity: 0;
    left: -100%;
  }
  80%,
  100% {
    opacity: 1;
    left: 0;
  }
}

/* @keyframes rightleft {
  0%,
  20% {
    left: unset;
    opacity: 0;
    right: -100%;
  }
  80%,
  100% {
    left: unset;
    opacity: 1;
    left: 0;
  }
} */

.main-slider .swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 7px;
  background-color: var(--color-white);
  border-radius: 2px;
  border: none !important;
}

.main-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  border: none !important;
}

.main-slide-btn-wr {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.main-slide-btn-wr button {
  background: #f4f7f9;
  width: 50px;
  height: 50px;
  border-radius: var(--border-rounded);
  color: var(--text-color);
  outline: none;
  border: none;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.main-slide-btn-wr button:hover {
  background: var(--primary-green);
  color: var(--color-white);
}

.main-slider:hover .main-slide-btn-wr {
  visibility: visible;
  opacity: 1;
}

/***** End Main Slider homepage (index) *****/

/***** CART ITEM *****/
/* .swiper-container-wrapper {
  padding: 20px;
  border: 1px solid red;
  overflow: hidden;
} */
.prod-card-swiper {
  /* border: 1px solid red; */
  padding: 20px 20px;
}

.prod-card-swiper .swiper-slide {
  height: auto;
}

.prod-card {
  position: relative;
  /* flex: 1 1 200px; */
  border-radius: var(--border-radius-8);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.prod-card.single {
  max-width: 340px;
  flex: 1 1 200px;
  width: 100%;
}

/* Base badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  color: #fff;
  line-height: 1;
}

.badge.no-ab {
  position: static;
  top: unset;
  left: unset;
}

.badge.stock {
  /* max-width: 200px; */
  width: auto;
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 1;
}

/* .stock-badge */

/* Variants */
.badge-stock,
.badge-discount {
  background: var(--primary-green);
}

.badge-best {
  background: #ff9800;
}

.badge-new {
  background: #2196f3;
}

.badge-nostock,
.badge-hot {
  background: #e53935;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.prod-card .img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 ratio */
  overflow: hidden;
}

.prod-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.prod-card .seconadry-img {
  opacity: 0;
  visibility: hidden;
}

.prod-card:hover .seconadry-img {
  opacity: 1;
  visibility: visible;
}

.prod-card:hover .primary-img {
  opacity: 0;
  visibility: hidden;
}

.prod-card:hover img {
  transform: scale(1.08);
}

.prod-desc {
  padding: 10px;
  flex: 1;
}

.prod-desc .cat {
  color: var(--text-color);
  font-size: 14px;
}

.prod-desc .title {
  color: var(--color-dark-blue);
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.prod-card:hover .prod-desc .title {
  color: var(--primary-green);
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.price-current {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.price-old {
  color: #999;
  font-size: 0.8rem;
  text-decoration: line-through;
}

.actions-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
}

.action-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #d8f3e6;
  border-radius: 8px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

/* Tooltip bubble */
.action-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-color);
  color: var(--color-white);
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

/* Arrow */
.action-item::before {
  content: "";
  position: absolute;
  bottom: calc(99%);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-color);
  opacity: 0;
}

/* Show on hover */
.action-item:hover::after,
.action-item:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.action-item i {
  color: var(--text-color);
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

.action-item:hover {
  background: #27925f;
  color: #fff;
  transform: translateY(-2px);
}

.action-item:hover i {
  color: var(--color-white);
}

/***** End CART ITEM *****/

/***** Prodcut page *****/

.pro-sg-gall {
  position: sticky;
  top: 110px; /* adjust if you have sticky header */
  align-self: flex-start;
}

.prod-page {
  margin-top: 75px;
}
.prod-page h1 {
  font-size: 28px;
  font-weight: 600;
}

.prod-page .hd-page {
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.prod-page .prod-pricing {
  display: inline-flex; /* or inline-block */
  align-self: flex-start;
}

.prod-page .prod-pricing .price-new {
  font-size: 34px;
}

.prod-page .prod-pricing .price-old {
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: -20%;
  right: -55%;
}

.variation {
  border: 1px solid #ddd;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  color: var(--color-black);
}

.variation:hover {
  border: 1px solid var(--primary-green) !important;
  color: var(--primary-green);
  background-color: rgba(242, 242, 242, 0.2);
}

.prod-page .add-to-cart-btn {
  transition: all 0.2s ease-in-out;
  max-width: 300px;
  width: 100%;
  font-size: 20px;
}

.prod-page .add-to-cart-btn i {
  font-size: 22px;
}

.prod-page .add-to-fav-btn {
  width: 50px;
  border-radius: var(--border-rounded);
  border: 1px solid var(--primary-green);
  transition: all 0.2s ease-in-out;
}

.prod-page .add-to-fav-btn i {
  color: var(--primary-green);
  transition: all 0.2s ease-in-out;
  font-size: 24px;
}

.prod-page .add-to-fav-btn:hover {
  width: 50px;
  background-color: #c82333;
  border: 1px solid #c82333;
}
.prod-page .add-to-fav-btn:hover i {
  color: var(--color-white);
}

.prod-page .prod-description h5 {
  font-size: 22px;
  color: var(--color-black);
  line-height: var(--line-height-150);
  font-weight: 500;
}

.prod-page .prod-description .prod-desc {
  font-size: 16px;
  line-height: var(--line-height-150);
  padding: 0;
}
.composition-table {
  padding: 0;
}

.composition-table h5 {
  font-size: 22px;
  color: var(--color-black);
  line-height: var(--line-height-150);
  font-weight: 500;
}

.composition-item {
  background: #f8f9fa;
  transition: all 0.2s ease;
}

.composition-item span {
  font-size: 0.95rem;
}

/* ===== Gallery thumbs ===== */
.prod-page .swiper-button-prev::after,
.prod-page .swiper-button-next::after {
  display: none !important;
}

.prod-page .swiper-button-prev,
.prod-page .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.prod-page .swiper-button-prev:hover,
.prod-page .swiper-button-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prod-page .swiper-button-prev {
  left: 10px;
}

.prod-page .swiper-button-next {
  right: 10px;
}

.prod-page .swiper-button-prev i,
.prod-page .swiper-button-next i {
  pointer-events: none;
}

.product-gallery-thumbs img {
  width: 135px;
  height: 135px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
}

.product-gallery-thumbs .swiper-slide-thumb-active img {
  opacity: 1;
  border: 2px solid #198754;
}

/* ===== Variations ===== */

/* ===== Price badges ===== */
.prod-page .badge {
  font-size: 0.875rem;
}

/* ===== Price ===== */
.text-decoration-line-through {
  text-decoration: line-through;
}

/***** End Prodcut page *****/

/***** CATALOG-PAGE *****/

.filter-hd-title {
  font-size: 24px;
  font-weight: 600;
}

.filter-aside {
  /* position: sticky;
  top: 140px;
  align-self: flex-start; */
}

.filter-aside .filter-box {
  background-color: #f2f2f2;
  border-radius: var(--border-radius-8);
}

.filter-search {
  width: 100%;
  padding: 6px 12px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.filter-search:focus {
  border-color: #0d6efd;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.2);
}

.filter-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px 5px;
}

.filter-list::-webkit-scrollbar {
  width: 8px;
}

.filter-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.filter-list::-webkit-scrollbar-thumb {
  background-color: var(--primary-green);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.filter-list::-webkit-scrollbar-thumb:hover {
  background-color: #0556c1;
}

/* Firefox */
.filter-list {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) #f1f1f1;
}

/* Hide native checkbox */
.filter-list input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Label wrapper */
.filter-list label {
  display: inline-flex; /* or inline-block */
  align-self: flex-start;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-black);
  gap: 7px;
  position: relative;
  padding-left: 28px; /* space for custom box */
}

/* Custom checkbox box */
.filter-list label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.2s ease;
}

/* Hover effect */
.filter-list label:hover::before {
  border-color: var(--primary-green);
}

/* Checked box background */
.filter-list input[type="checkbox"]:checked + label::before {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Checkmark */
.filter-list input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 1px;
  top: 50%;
  transform: translate(6px, -50%) rotate(45deg); /* 6px shifts it inside the box */
}

.filter-aside .filter-box input {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.filter-aside .filter-box input:focus {
  border-color: var(--primary-green); /* optional focus color */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* slightly stronger on focus */
}

/* Toggle button */
.filter-toggle {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 6px 0;
}

/* Arrow rotation */
.filter-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.filter-section._collapsed .arrow {
  transform: rotate(-90deg);
}

/* Collapsed content */
.filter-section._collapsed ul {
  display: none;
}

.sorting-bar select {
  min-width: 200px;
  padding: 5px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.sorting-bar .totals-sorting {
  font-size: 16px;
}

.sorting-bar .totals-sorting b {
  font-weight: 600;
}

/***** End CATALOG-PAGE *****/

/***** Our Offer Homepage *****/

.our-offer__homepage {
  padding: 100px 10px;
  background-color: var(--color-bg-secondary);
}

.our-offer__homepage .offer-links {
  max-width: 700px;
  width: 100%;
  gap: 15px;
}

.our-offer__homepage .offer-link__item {
  max-width: 48%;
  width: 100%;
  gap: 15px;
  text-align: center;
  padding: 25px 25px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  position: relative;
  overflow: hidden;
}

.our-offer__homepage .offer-link__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.our-offer__homepage .offer-link__item .img-bg {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(40%);
  z-index: 0;
}

.our-offer__homepage .offer-link__item .vector-img {
  max-width: 75px;
  width: 100%;
  margin-bottom: 5px;
  position: relative;
}

.our-offer__homepage .offer-link__item h3 {
  font-size: 18px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 500;
  position: relative;
}

.our-offer__homepage .offer-link__item p {
  font-size: 15px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
}

.our-offer__homepage .offer-link__item .link-sign {
  font-size: 14spx;
  padding: 10px;
  border: 1px solid var(--light-gray-1);
  border-radius: var(--border-rounded);
  background-color: var(--color-bg-secondary);
  color: var(--primary-green);
  font-weight: bold;
  position: relative;
}

.our-offer__homepage .offer-link__item .vector-img,
.our-offer__homepage .offer-link__item h3,
.our-offer__homepage .offer-link__item p,
.our-offer__homepage .offer-link__item .link-sign {
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.our-offer__homepage .offer-link__item:hover h3,
.our-offer__homepage .offer-link__item:hover p,
.our-offer__homepage .offer-link__item:hover .link-sign {
  color: var(--color-white);
}

.our-offer__homepage .offer-link__item:hover .link-sign {
  color: var(--color-white);
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.our-offer__homepage .offer-link__item:hover::before {
  background-color: transparent;
}

.our-offer__homepage .offer-link__item:hover .vector-img {
  filter: brightness(0) invert(1);
}

.our-offer__homepage .offer-text {
  max-width: 600px;
  width: 100%;
  padding: 35px;
}

.our-offer__homepage .offer-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  line-height: var(--line-height-150);
}
.our-offer__homepage .offer-text h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-115);
  margin-bottom: 25px;
}
.our-offer__homepage .offer-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
}

a.view-more {
  max-width: 170px;
  width: 100%;
  padding: 17px 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  border: 3px solid var(--light-gray-2);
  border-radius: var(--border-radius-32);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

a.view-more i {
  margin-left: 10px;
  color: var(--primary-green);
  font-size: 13px;
  transition: all 0.3s ease-in-out;
}

a.view-more:hover {
  background-color: var(--primary-green);
  color: var(--color-white);
  border-color: var(--primary-green);
}

a.view-more:hover i {
  color: var(--color-white);
}

/***** End Our Offer Homepage *****/

/***** Our products Homepage *****/

.our-products {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0px 20px;
}

.our-products__column h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.our-products__column p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.filtering-items-wrapper .filter-list {
  gap: 35px;
}

.filtering-items-wrapper .filter-item {
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  background-color: var(--color-white);
  border: 3px solid var(--light-gray-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.filtering-items-wrapper .filter-item._active {
  background-color: var(--primary-green);
  border: 3px solid var(--primary-green);
  color: var(--color-white);
}

.filtering-items-wrapper .filter-item:hover {
  background-color: var(--primary-green);
  border: 3px solid var(--primary-green);
  color: var(--color-white);
}

.__pods-row {
  gap: 30px;
  margin-top: 50px;
}

.filter__pod-single {
  max-width: 22.5%;
  width: 100%;
  padding: 0 0 18% 0;
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}

.prod-cat .filter__pod-single {
  max-width: 31.5%;
  padding: 0 0 25% 0;
}

.filter__pod-single .pod-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: all 0.6s ease-in-out;
}

.filter__pod-single .heading-wr {
  position: absolute;
  bottom: 20px;
  left: 20px;
  gap: 7px;
  padding-bottom: 6px;
  overflow: hidden;
}

.filter__pod-single .heading-wr i {
  font-size: 18px;
  color: var(--color-white);
  transform: translate(-30px, 0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.filter__pod-single h4 {
  font-size: 28px;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  line-height: var(--line-height-115);
}

.filter__pod-single h4::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: -100%;
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
}

.filter__pod-single:hover h4::before {
  left: 0;
}

.filter__pod-single:hover .pod-img {
  transform: scale(1.2);
  filter: brightness(50%);
}

.filter__pod-single:hover .heading-wr i {
  transform: translate(0, 0);
  opacity: 1;
}

.filterable.ds-none {
  display: none !important;
}
.filterable.ds-hide {
  visibility: hidden;
  opacity: 0;
}

/***** End Our products Homepage *****/

/***** Promo Offer Homepage *****/

.promo-offer {
  padding: 100px 10px;
  background-color: var(--color-bg-secondary);
}

.promo-offer__column {
  gap: 15px;
}

.promo-offer h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 500;
  max-width: 650px;
  width: 100%;
  text-shadow: 0px 0px 13px rgba(66, 184, 131, 0.33);
}

.promo-offer p {
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 300;
  max-width: 500px;
  width: 100%;
  color: var(--text-color);
}

.promo-offer .call__action {
  font-size: 18px;
  font-weight: 500;
  max-width: 250px;
  width: 100%;
  padding: 18px 30px;
  border-radius: var(--border-radius-32);
  background-color: var(--primary-green);
  border: 3px solid var(--primary-green);
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}

.promo-offer .call__action:hover {
  background-color: transparent;
  border-color: var(--light-gray-2);
  transition: all 0.3s ease-in-out;
  box-shadow: unset;
  color: var(--color-dark-blue);
}

/***** End Promo Offer Homepage *****/

.pod-detailed {
  margin-top: 60px;
  margin-bottom: 100px;
}

.pod-det-hd-wr {
  margin-bottom: 40px;
  padding-left: 10px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr .text-wrapper {
  max-width: 600px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr a.view-more {
  margin-bottom: 0;
}

.pod-det-hd-wr h2 {
  font-size: 42px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.pod-det-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
  max-width: 500px;
  width: 100%;
}

.pod-detail__slide {
  gap: 100px;
}

.pod-detail__slide .img-wrapper {
  max-width: 50%;
  width: 100%;
  position: relative;
  padding: 0 0 40% 0;
  border-radius: var(--border-radius-24);
  overflow: hidden;
}

.pod-detail__slide .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.pod-detail__slide .prod-description {
  max-width: 40%;
  width: 100%;
  gap: 10px;
}

.pod-detail__slide .prod-description h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  width: 100%;
}

.pod-detail__slide .prod-description p {
  max-width: 85%;
  width: 100%;
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 300;
  color: var(--text-color);
  margin-bottom: 10px;
}

.pod-features {
  max-width: 80%;
  width: 100%;
  gap: 20px;
}

.pod-features li {
  max-width: 45%;
  width: 100%;
  /* gap: 8px; */
}

.pod-features li h4 {
  font-size: 22px;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  font-weight: 500;
}

.pod-features li p {
  font-size: 17px;
  color: var(--text-color);
  line-height: var(--line-height-135);
  font-weight: 400;
}

.explore__btn {
  max-width: 60%;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--color-white);
  border-radius: var(--border-radius-32);
  background-color: var(--primary-green);
  border: 3px solid var(--primary-green);
  margin-top: 20px;
  gap: 20px;
  transition: all 0.2s ease-in-out;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.explore__btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  content: "";
  width: 50%;
  height: 120%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 1s ease-in-out;
}

.explore__btn:hover {
  background-color: #36966b;
  border-color: #36966b;
}

.explore__btn:hover::before {
  left: 125%;
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-green);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all 0.5s;
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}
.btn-wr-sl button:hover {
  background-color: rgba(66, 184, 131, 0.7);
  border: 3px solid var(--primary-green);
}
.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-green);
  height: 1px;
  width: 40px;
}

.btn-wr-sl.cl-gr button {
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: var(--light-gray-2);
  border: unset;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl.cl-gr .line {
  margin: 0px 7px;
  background-color: var(--light-gray-2);
  height: 1px;
  width: 40px;
}

/***** About US *****/

.about-us__homepage {
  padding: 100px 10px;
  background-color: var(--color-bg-secondary);
}

.about-us__homepage .offer-links {
  max-width: 700px;
  width: 100%;
  gap: 15px;
}

.about-us-row__homepage {
  gap: 100px;
}

.about-us__homepage .offer-link__item {
  max-width: 48%;
  width: 100%;
  gap: 15px;
  text-align: center;
  padding: 25px 25px;
  background-color: var(--color-white);
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.about-us__homepage .offer-link__item h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  color: var(--primary-green);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.about-us__homepage .offer-link__item h3 {
  font-size: 23px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.about-us__homepage .offer-link__item:hover {
  background-color: #69c99e;
}

.about-us__homepage .offer-link__item:hover h3,
.about-us__homepage .offer-link__item:hover h2 {
  color: var(--color-white);
}

.about-us__homepage .offer-text {
  max-width: 600px;
  width: 100%;
}

.about-us__homepage .offer-text {
  max-width: 600px;
  width: 100%;
  padding: 35px;
}

.about-us__homepage .offer-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  line-height: var(--line-height-150);
}
.about-us__homepage .offer-text h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-115);
  margin-bottom: 25px;
}
.about-us__homepage .offer-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
}

.why-whe__row {
  margin-top: 80px;
  gap: 30px;
}

.why-we_item {
  max-width: 32%;
}

.why-we_item {
  max-width: 32%;
  padding: 25px;
}

.why-we_item i {
  font-size: 48px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.why-we_item h3 {
  font-size: 28px;
  line-height: var(--line-height-135);
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--color-dark-blue);
}
.why-we_item p {
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--text-color);
}

.partners-slider {
  margin-top: 80px;
}

.partners-slider h2 {
  font-size: 38px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 50px;
}

.partners-slide img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.partners-slider .swiper-pagination {
  position: relative;
  margin-top: 35px;
}

.partners-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-green);
  opacity: 0.5;
  padding: 5px;
}

.partners-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-green) !important;
  opacity: 1;
}

/***** End About US *****/

/***** Video About *****/

.video-about {
  width: 100%;
  position: relative;
  padding: 0 0 25% 0;
}

.video-about img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
}

.video-about .text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-about .text-wrapper h2 {
  color: var(--color-white);
  line-height: var(--line-height-150);
  font-size: 32px;
  font-weight: 500;
  max-width: 800px;
  width: 100%;
  margin-bottom: 40px;
}

.video-about .text-wrapper i {
  color: var(--primary-green);
  font-size: 32px;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: var(--border-rounded);
  transition: all 0.3s ease-in-out;
  animation: pulse-animation 2s infinite;
  text-align: center;
}

.video-about .text-wrapper i:hover {
  background-color: var(--primary-green);
  color: var(--color-white);
  cursor: pointer;
}

.video-modal-body {
  position: relative;
  padding: 0 0 45% 0;
  max-width: 1200px;
  width: 100%;
}

.video-modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(68, 187, 133, 1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(68, 187, 133, 0);
  }
}

/***** End Video About *****/

/***** FAQ *****/

.faq {
  margin-top: 75px;
  margin-bottom: 75px;
}

.faq .faq-text {
  max-width: 480px;
  width: 100%;
}

.faq .faq-text h4 {
  font-size: 18px;
  line-height: 22px;
  color: #777777;
  margin-bottom: 8px;
  font-weight: 300;
}

.faq .faq-text h2 {
  font-size: 38px;
  line-height: 42px;
  color: #212529;
  margin-bottom: 24px;
  font-weight: 600;
}

.faq .faq-text img {
  max-width: 150px;
  height: auto;
  margin-bottom: 24px;
}

.faq .faq-text h3 {
  font-size: 21px;
  line-height: 25px;
  color: #777777;
  margin-bottom: 24px;
  margin-right: 8px;
  font-weight: 400;
}

.faq .faq-text p {
  font-size: 15.5px;
  line-height: 20px;
  color: #777777;
  margin-bottom: 50px;
  font-weight: 400;
}

.faq .faq-text .contact-btn {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.faq .faq-text .contact-btn button {
  font-size: 17px;
  color: var(--color-white);
  background-color: var(--primary-green);
  border-radius: var(--border-radius-24);
  padding: 18px 35px;
  max-width: 250px;
  width: 100%;
  border-radius: var(--border-radius-24);
  box-shadow: 5px 5px #666666;
  transition: all 0.3s ease-in-out;
  border: none;
}

.faq .faq-text .contact-btn:hover {
  opacity: 0.8;
  transform: translate(5px, 5px);
}

.faq .faq-text .contact-btn:hover button {
  box-shadow: 0px 0px #666666;
}

.faq-col {
  position: relative;
  max-width: 750px;
  width: 100%;
  height: auto;
}
.faq-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-items .smb {
  margin: 0;
  padding: 0;
  color: var(--color-dark);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.faq-items .item {
  display: flex;
  flex-direction: column;
  max-width: 750px;
  width: 100%;
  margin: 5px 0;
  background-color: var(--light-gray-1);
  padding: 0px 10px 10px 10px;
  border-radius: var(--border-radius-24);
}

.faq-items .item .question {
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 5px 10px;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-dark-blue);
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  margin-top: 25px;
}

.faq-items .item .answer {
  position: relative;
  margin-top: 5px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color);
  width: 75%;
  max-height: 0px;
  transition: all 0.4s ease;
  overflow: hidden;
  line-height: 24px;
  padding: 10px 10px 0px 10px;
  opacity: 0;
  visibility: hidden;
}

.faq-items .item.active .answer {
  max-height: 300px;
  visibility: visible;
  opacity: 1;
}

.faq-items .item.active .smb {
  transform: rotate(135deg);
}

/***** End FAQ *****/

/***** Gallery section Homepage *****/

.gallery {
  margin-top: 75px;
  padding: 0px 15px;
}

.gallery-heading {
  width: 100%;
  margin-bottom: 20px;
}

.gallery-heading .text-wrapper.pg {
  width: 100%;
}

.gallery-heading .text-wrapper.pg h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.gallery-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.gallery-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.gallery-slide {
  width: 100%;
  position: relative;
  padding: 0 0 20% 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-wrapper-modal,
.gallery-slider-single {
  max-width: 1000px;
  width: 100%;
}

.gallery-slide-single {
  width: 100%;
  position: relative;
  padding: 0 0 70% 0;
}

.gallery-slide-single img,
.gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
}

.gallery-slide img:hover {
  transform: scale(1.1);
}

/***** End Gallery section Homepage *****/

/***** Reviews Section Homepage *****/
.reviews {
  margin-top: 75px;
  padding: 0px 15px;
}

.reviews-heading {
  margin-bottom: 75px;
}

.reviews-heading h2 {
  font-size: 58px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.reviews-heading h2 span {
  color: var(--primary-green);
}

.reviews-heading p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.btn-call__now {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn-call__now {
  font-size: 17px;
  color: var(--color-white);
  background-color: var(--primary-green);
  border-radius: var(--border-radius-24);
  padding: 18px 35px;
  max-width: 250px;
  width: 100%;
  border-radius: var(--border-radius-24);
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: all 0.3s ease-in-out;
  border: none;
}

.btn-call__now:hover {
  box-shadow: none;
  background-color: #297050;
}

.review-slide {
  height: unset;
  padding: 25px 15px;
  border: 3px solid var(--light-gray-1);
  border-radius: var(--border-radius-12);
}

.review-slide .stars-wrapper {
  margin-bottom: 15px;
}

.review-slide .stars-wrapper i {
  font-size: 18px;
  color: var(--primary-green);
}

.review-slide img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-rounded);
  object-fit: cover;
}

.review-slide p {
  font-size: 18px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 20px;
  flex: 1 1 auto;
}

.review-slide .client-info {
  gap: 20px;
}

.review-slide .client-initials h4 {
  font-size: 18px;
  color: var(--color-dark-blue);
  font-weight: 500;
}

.review-slide .client-initials p {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 0;
}

/***** End Reviews Section Homepage *****/

/***** Blog Homepage section *****/

.view-more-itm {
  margin-bottom: 50px;
}
.blog__homepage {
  margin-top: 75px;
  padding: 0px 15px;
  margin-bottom: 75px;
}

.blog__row {
  gap: 50px 30px;
}

.blog-heading {
  width: 100%;
  margin-bottom: 20px;
}

.blog-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.blog-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.blog-item {
  max-width: 31%;
  width: 100%;
  gap: 15px;
}

.blog-item .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 65% 0;
}

.blog-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
}

.blog-item .date-wrapper {
  gap: 10px;
}

.blog-item .date-wrapper span {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item .date-wrapper i {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item h3 {
  font-size: 22px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.blog-item p {
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 300;
}

.blog_btn {
  max-width: 200px;
  width: 100%;
  padding: 15px 30px;
  outline: none;
  border: none;
  border-radius: var(--border-radius-24);
  color: var(--color-white);
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.blog_btn span {
  position: relative;
}

.blog_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--link-color);
  transition: all 0.3s ease-in-out;
}

.blog-item:hover .blog_btn::before {
  top: 0;
}

.blog-item:hover .img-wrapper img {
  filter: grayscale(1);
}

.post-content {
  margin: 50px 10px;
}
.post-content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: normal;
  line-height: var(--line-height-175);
}

.post-content h1 {
  font-size: 2em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h2 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h3 {
  font-size: 1.17em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h4 {
  font-size: 1em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h5 {
  font-size: 0.83em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h6 {
  font-size: 0.67em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

/***** End Blog Homepage section *****/

/***** Page Intro *****/
.page-intro {
  position: relative;
  width: 100%;
  padding: 0 0 45% 0;
}

.page-intro.min {
  position: relative;
  width: 100%;
  padding: 0 0 37.5% 0;
}

.page-intro img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.page-intro.min img {
  object-position: 0 0;
}

.page-intro .intro-text-wrapper {
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
}

.page-intro .page-intro-txt {
  color: var(--color-white);
  gap: 10px;
}

.breadcrumbs {
  gap: 7px;
}

nav .breadcrumb a {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-green);
}

.page-intro .page-intro-txt h2 {
  font-size: 62px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h2.ttl-min {
  font-size: 34px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 135%;
  margin-top: 15px;
  letter-spacing: 1.4px;
}

.page-intro .page-intro-txt p {
  font-size: 18px;
  font-weight: 300;
  line-height: 175%;
  max-width: 600px;
  width: 100%;
}
/***** End Page Intro *****/

/***** PRODUCT PAGE *****/

.page-desc {
  margin-top: 50px;
}

.prod-desc {
  gap: 15px;
}
.prod-desc h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.prod-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.specifications {
  margin-top: 75px;
}

.spec-heading h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin-bottom: 35px;
}

.spec-wrapper {
  gap: 100px;
}

.spec-wrapper .img-wrapper {
  max-width: 650px;
  width: 100%;
  position: relative;
  padding: 0 0 45% 0;
}

.spec-wrapper .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  filter: brightness(80%);
}

.spec-list {
  max-width: 580px;
  width: 100%;
  gap: 15px;
}

.spec-list h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: var(--line-height-150);
}

.spec-list .item {
  gap: 5px;
}

.spec-list .item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.spec-list .item p {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-150);
}

.floor-paln {
  margin-top: 100px;
  margin-bottom: 100px;
}

.floor-paln h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 20px;
}

.floor-paln .img-wrapper img {
  max-width: 950px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-wrapper {
  margin-top: 50px;
  margin-bottom: 75px;
}

.features-wrapper ul {
  max-width: 1000px;
  width: 100%;
  gap: 20px;
}

.features-wrapper ul li {
  font-size: 17px;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.features-wrapper ul li i {
  margin-right: 15px;
  color: var(--primary-green);
  font-size: 35px;
}

.features-wrapper h3 {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.related-prod.pg {
  background-color: var(--color-bg-secondary);
}

.rel-hd-wr {
  margin-bottom: 30px;
  gap: 10px;
}

.rel-hd-wr h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.rel-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
}

.related-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.related-slide::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
}

.related-slide:hover::after {
  bottom: 0px;
}

.related-slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 70% 0;
}

.related-slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(60%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.related-slide .slide-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 1;
  gap: 5px;
}

.related-slide .slide-text h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
}

.related-slide .slide-text h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
  letter-spacing: 1.4px;
}

.related-slide:hover .img-wrapper img {
  filter: brightness(40%);
}

/***** End PRODUCT PAGE *****/

/***** About page *****/

.we-are {
  margin: 75px 0px;
}

.we-are-row .img-wrapper {
  width: 50%;
  position: relative;
  padding: 0 0 40% 0;
}

.we-are-row .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.we-are-row .text-wrapper {
  width: 45%;
  padding: 30px;
}

.we-are-row .text-wrapper {
  width: 45%;
  padding: 20px 5px;
}

.we-are-row .text-wrapper h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  line-height: var(--line-height-150);
}
.we-are-row .text-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-115);
  margin-bottom: 25px;
}
.we-are-row .text-wrapper p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
}

/***** End About page *****/

/***** Contact Page *****/
.contact-pg {
  margin-top: 50px;
}

.contact-pg-wrapper {
  gap: 100px;
}

.contact-pg .text-wrapper {
  width: 50%;
  gap: 20px;
}

.contact-pg .text-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.contact-pg .text-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
}

.contact-pg .text-wrapper p span {
  color: var(--text-color);
  font-weight: 600;
}

.contact-pg .text-wrapper .contacts {
  gap: 10px;
}

.contact-pg .text-wrapper .contacts li {
  margin-bottom: 10px;
}

.contact-pg .text-wrapper .contacts a {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-pg .text-wrapper .contacts li i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 18px;
  background-color: var(--primary-green);
  color: var(--color-white);
  border-radius: var(--border-rounded);
}

.form-wrapper {
  width: 50%;
  gap: 20px;
}

.form-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.form-wrapper form {
  max-width: 100%;
  gap: 30px;
}

iframe.map {
  margin-top: 50px;
  margin-bottom: 100px;
}

/***** End Contact Page *****/

/***** CAtegory Prod Page *****/

.prod-cat {
  margin-bottom: 75px;
}
/***** End CAtegory Prod Page *****/

/***** Footer *****/

iframe {
  margin-top: 50px;
}

footer {
  width: 100%;
  background-color: var(--primary-green);
  margin-top: auto;
}
/* footer {
  width: 100%;
  background-color: #1c1b1b;
  margin-top: auto;
} */

.footer-nav {
  padding: 48px 0px;
}

.footer-nav-section {
  max-width: 307px;
  width: 100%;
  padding: 0px 15px;
}

.footer-nav-row .footer-info {
  gap: 22px;
}
.footer-nav-row .footer-info .footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.footer-nav-row .footer-info h2 {
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer-nav-row .footer-info .footer-socials {
  gap: 12px;
}
.footer-nav-row .footer-info .footer-socials img {
  width: 22px;
  height: auto;
}
.footer-nav-row .footer-info p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}

.footer-nav-row .footer-nav-section:nth-child(2) {
  padding-left: 48px;
}

.footer-nav-row .footer-nav-links h3 {
  font-size: 22px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-nav-row .footer-nav-links .footer-link {
  margin-bottom: 8px;
}
.footer-nav-row .footer-nav-links .footer-link a {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  transition: all 0.25s ease-in-out;
}

.footer-nav-row .footer-nav-section:last-child .footer-link a {
  font-size: 16px;
  line-height: 24px;
}

.footer-nav-row .footer-nav-links .footer-link a:hover {
  color: var(--link-color);
}

.bottom-footer {
  height: 72px;
  background-color: #1c1b1b;
  width: 100%;
}
.bottom-footer h4 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

/***** End Footer *****/

/***** End Main  *****/

/***** BTN WOW *****/
a.btn-wow {
  max-width: 250px;
  width: 100%;
  height: 65px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  /* background-color: transparent; */
  border-radius: var(--border-radius-3);
  font-weight: 500;
  position: relative;
  /* overflow: hidden; */
  transition-delay: 0.3s;
  transition: all 0.3s ease-in;
}

a.btn-wow span.txt {
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

a.btn-wow i.arrow {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
  /* color: var(--primary-green); */
}

a.btn-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  width: 65px;
  height: 100%;
  border-radius: 50px; /*1*/
  border: 2px solid var(--color-white); /*2*/
  box-shadow: 0 0 0 0 rgba(#5a99d4, 0.5);
  transition: all 0.3s ease-in-out;
}

a.btn-wow:hover::before {
  width: 108%;
  height: 100%;
  border-radius: 100px;
  border-color: var(--primary-green);
  background-color: var(--primary-green);
  animation: unset;
}

a.btn-wow:hover i.arrow {
  left: 73%;
  color: var(--primary-white);
}

a.btn-wow:hover span.txt {
  left: 40%;
  color: var(--primary-white);
}

a.btn-wow span {
  position: relative;
  z-index: 1;
}

/***** End BTN WOW *****/

/* MODAL WINDOW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.modal-overlay._active {
  visibility: visible;
  opacity: 1;
}

.modal-body {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.2s;
  position: relative;
  bottom: -100%;
  opacity: 1;
  visibility: hidden;
}

.modal-overlay._active .modal-body {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.close-modal-window {
  color: #253d4e;
  font-size: 22px !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.modal-overlay .close-modal-window:hover {
  color: #ff8080;
}

/* MODAL WIDNOW */

/***** CONTACT MODAL WINDOW *****/

.contact-modal-body {
  max-width: 800px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-24);
  overflow: hidden;
  margin: 10px;
}

.contact-modal-body .img-wrapper {
  max-width: 40%;
  width: 100%;
  position: relative;
  padding: 0 0 66.25% 0;
}

.contact-modal-body .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-modal-body .text-wrapper {
  padding: 35px 25px;
  gap: 10px;
}

.contact-modal-body .text-wrapper h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
}

.contact-modal-body .text-wrapper h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 15px;
}

.contact-form-popup {
  max-width: 80%;
  width: 100%;
  gap: 20px;
}

.contact-form-popup input {
  width: 100%;
  background-color: var(--light-gray-1);
  border: none;
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;
}

.contact-form-popup .get-quote {
  border: none;
  color: var(--color-white);
  font-size: 18px;
  line-height: var(--line-height-150);
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}

.contact-form-popup .get-quote:hover {
  animation: none;
  background-color: #36966b;
}

/***** End CONTACT MODAL WINDOW *****/

/***** ACCOUNT PAGE *****/

.main._account {
  margin-top: 175px;
}

.account-info {
  border-radius: var(--border-radius-8);
  padding: 15px 15px;
  /* background-color: rgba(66, 184, 131, 0.2); */
  background-color: #f2f2f2;
}

.account-info h3 {
  font-size: 16px;
  font-weight: 600;
}
.account-info .account-bonuses {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}

.account-info .account-bonuses i {
  color: var(--primary-green);
  font-size: 16px;
}

.account-info .account-bonuses span {
  color: cornflowerblue;
  font-weight: 600;
}

.account-content {
  /* border: 1px solid red; */
}

.results-query-wrapper {
  font-size: 15px;
  color: var(--color-black);
}

.results-query-wrapper span {
  font-weight: 600;
}

.cig-select {
  position: relative;
  width: 220px;
}

.selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
}

.arrow {
  margin-left: auto;
  opacity: 0.6;
}

.options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
  overflow: hidden;
}

.option {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.option:hover {
  background: #f5f7fa;
}

/* status dots */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.all {
  background: #9ca3af; /* neutral */
}

.option._default {
  font-weight: 500;
}

.option._active {
  background: #f3f4f6;
}

.pending {
  background: #f59e0b;
}
.processing {
  background: #3b82f6;
}
.completed {
  background: #22c55e;
}
.cancelled {
  background: #ef4444;
}

/* open state */
.cig-select._open .options {
  display: block;
}

.placeholder-dot {
  background: #d1d5db;
}

.cig-select .arrow {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.6;
}

.cig-select .arrow.reset {
  color: #4d4d4d;
  font-weight: bold;
}

.cart-table th {
  padding: 18px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
  border-bottom: 1px solid #eee;
}

.acc-cnt-name {
  font-size: 24px;
  font-weight: 500;
}

.account-nav ul h2 {
  font-size: 16px;
  font-weight: 600;
  padding: 0px 5px;
}

.account-nav ul a {
  padding: 10px 15px;
  border-radius: var(--border-radius-8);
  transition: all 0.2s ease-in-out;
}

.account-nav ul a i {
  font-size: 16px;
  color: var(--text-color);
  font-size: 16px;
}

.account-nav ul a span {
  font-size: 14px;
  color: #595959;
  font-weight: 500;
}

.account-nav ul a i,
.account-nav ul a span {
  transition: all 0.1s ease-in-out;
}

.account-nav ul a._active {
  background-color: #f2f2f2;
}

.account-nav ul a._active i {
  color: var(--color-black);
}

.account-nav ul a:hover {
  background-color: #f2f2f2;
}

.account-nav ul a:hover i {
  color: var(--color-black);
}

.account-nav ul a:hover span {
  color: var(--color-black);
}

.history-pagination .pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #d9d9d9;
  color: var(--color-black);
  border-radius: 5px;
}

/***** End ACCOUNT PAGE *****/

/***** AUTH *****/
._page-auth {
  margin-top: 120px;
}
._auth {
  height: 85vh;
  /* border: 1px solid red; */
}

.container {
  /* border: 1px solid red; */
}

._auth .img-wrapper {
  width: 100%;
  padding: 0 0 100% 0;
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
}

._auth .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.auth-form .form-text h1 {
  color: var(--color-black);
  font-size: 32px;
  font-weight: 500;
}

.auth-form .form-text p {
  max-width: 65%;
  line-height: var(--line-height-135);
  font-size: 14px;
}

.auth-form-wr label {
  font-size: 14px;
  font-weight: 400;
  padding: 3px;
}

.auth-form-wr .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da; /* or your custom color */
}

.auth-form-wr .form-control {
  font-size: 15px;
  border-radius: 4px !important;
}

.auth-form-wr .form-control::placeholder {
  font-size: 14px;
}

.auth-button {
  padding: 15px;
  border: none;
  border-radius: 4px;
  color: var(--color-white);
  background-color: var(--primary-green);
  transition: all 0.2s ease-in-out;
}

.auth-form-wr .auth-button:hover {
  background-color: #198754;
}

.auth-form-wr .form-check label {
  margin: 0 !important;
  padding: 0 !important;
}

.auth-form-wr .form-check input {
  margin-top: 0px;
  margin-right: 10px;
}

.auth-form-wr .auth-link {
  color: var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
  transition: all 0.2s ease-in-out;
}

.auth-form-wr .auth-link.no-b {
  border: none;
}

.auth-form-wr .auth-link:hover {
  color: #27925f;
}
.auth-collage img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.collage-main {
  height: 320px;
}

.collage-small {
  height: 150px;
}

/***** End AUTH *****/
